=========================================
README — ExpenseFlow Code Directory
=========================================  
-----------------------------------------
Directory Overview
-----------------------------------------

Code/
│
└── WebSite/
       ├── expense-tracker.html
       ├── css/
       │     └── Styles.css
       └── JavaScript/
                └── index.js


-----------------------------------------
Description of Each Folder
-----------------------------------------

1. WebSite/
This folder contains all code required to run the web-based version of ExpenseFlow.  
It includes:

- `expense-tracker.html`  
  The main HTML file that defines the structure of the web application.

- `css/Styles.css`  
  All styling for the dashboard, forms, charts, and responsive layout.

- `JavaScript/index.js`  
  All client-side logic for the application, including:
  - Managing expenses and income entries
  - Updating totals and category breakdowns
  - Filtering transactions by month
  - Dynamically updating the UI
  - Rendering interactive charts using Plotly

-----------------------------------------
Deployment Notes
-----------------------------------------

To deploy the website, upload the contents of the WebSite/ folder to any static hosting service.

Required files:
- expense-tracker.html
- css/Styles.css
- JavaScript/index.js

No backend, server, or database is required for deployment.